home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / utils / tosfixes / tos14fx2.lzh / TOS14FX2.TXT < prev   
Text File  |  1991-06-29  |  2KB  |  43 lines

  1. TOS14FX2.PRG
  2. Copyright 1989,1991 Atari Corp.
  3.  
  4. With the release of the Extensible Control Panel, 2 bits out of place in
  5. TOS14FIX.PRG started causing people all kinds of problems.  TOS14FX2.PRG
  6. sets those two bits aright, so that you can use the Modem Setup CPX and
  7. still live without the following 2 bugs in Rainbow TOS:
  8.  
  9. 1) A change was made to the BIOS call that sets the RS-232 port
  10. configuration.  Specifically, it did not allow RTS/CTS flow control to
  11. be enabled.  This is a problem for people with serial printers and high
  12. speed modems, since those devices use RTS/CTS flow control to start and
  13. stop data transmission so that the device can keep up with the
  14. computer. If you have Rainbow TOS, and you use a high-speed serial
  15. device which requires RTS/CTS flow control, you need this program in
  16. your auto folder.
  17.  
  18. 2) A much less significant bug crept into an internal routine which the
  19. AES uses to parse file names.  The bottom line is that under extenuating
  20. circumstances, it could be possible that a GEM program would not be able
  21. to successfully load a resource file or to find a file using the AES shell
  22. library call shel_find().  The patch program replaces the internal AES call.
  23.  
  24. All you need to do to use TOS14FIX.PRG is put it in your auto folder, or
  25. run it from the desktop.  If it successfully installs the patches, it
  26. will print a message to that effect.  If the version of TOS in your
  27. machine does not require these patches, then it will print nothing.
  28.  
  29. Technical Note:
  30. ===============
  31. TOS14FIX does its work by patching into the vectors for the calls which
  32. it replaces.  It copies the actual patch code into an area of low
  33. memory which is specifically reserved in TOS for this purpose.  This
  34. means that having the patches installed will use no extra memory in
  35. your computer.  Not only that, but these patches will not slow your
  36. system down whatsoever, because they replace completely the system
  37. calls which they fix.  The patch program also installs a reset handler
  38. so that the patch can de-install itself when you do a warm boot
  39. (normally the area of memory reserved for programs like this will
  40. survive a warm boot).  The patch program will be completely transparent
  41. to anything you do, except, of course, the bugs won't be there!
  42.  
  43.